home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 21 / AACD 21.iso / AACD / Utilities / EvenMore / rexx / wierdtext.rexx < prev   
Encoding:
OS/2 REXX Batch file  |  2000-02-12  |  344 b   |  21 lines

  1. /* */
  2.  
  3. if ~show('p','rexxsupport.library') then call addlib('rexxsupport.library',0,-30,0)
  4.  
  5. address 'EVENMORE.1'
  6. options results
  7.  
  8. "GETFILENAME"
  9. filename = RESULT
  10.  
  11. /* Command can be JIVE, LAMER, CRAZYTEXT, CHEF, etc
  12. */ Get these on aminet
  13.  
  14. address command 'C:jive <'filename' >RAM:wierdtext'
  15.  
  16. "OPEN Ram:wierdtext"
  17.  
  18. delete('Ram:wierdtext')
  19.  
  20. exit
  21.